home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / asmsrc / thesource-7.lha / Source / Articles / Stereoscopic / SegaGlasses.lha / SegaGlasses / getopt.c < prev    next >
C/C++ Source or Header  |  1992-07-28  |  2KB  |  81 lines

  1. /*
  2.  * Here's something you've all been waiting for:  the AT&T public domain
  3.  * source for getopt(3).  It is the code which was given out at the 1985
  4.  * UNIFORUM conference in Dallas.  I obtained it by electronic mail
  5.  * directly from AT&T.  The people there assure me that it is indeed
  6.  * in the public domain.
  7.  * 
  8.  * There is no manual page.  That is because the one they gave out at
  9.  * UNIFORUM was slightly different from the current System V Release 2
  10.  * manual page.  The difference apparently involved a note about the
  11.  * famous rules 5 and 6, recommending using white space between an option
  12.  * and its first argument, and not grouping options that have arguments.
  13.  * Getopt itself is currently lenient about both of these things White
  14.  * space is allowed, but not mandatory, and the last option in a group can
  15.  * have an argument.  That particular version of the man page evidently
  16.  * has no official existence, and my source at AT&T did not send a copy.
  17.  * The current SVR2 man page reflects the actual behavor of this getopt.
  18.  * However, I am not about to post a copy of anything licensed by AT&T.
  19.  */
  20. #include <stdio.h>
  21. #include <string.h>
  22.  
  23. #define ERR(s, c)    if(opterr){\
  24.     extern int write();\
  25.     char errbuf[2];\
  26.     errbuf[0] = c; errbuf[1] = '\n';\
  27.     (void) write(2, argv[0], (unsigned)strlen(argv[0]));\
  28.     (void) write(2, s, (unsigned)strlen(s));\
  29.     (void) write(2, errbuf, 2);}
  30.  
  31. int    opterr = 1;
  32. int    optind = 1;
  33. int    optopt;
  34. char    *optarg;
  35.  
  36. int
  37. getopt(argc, argv, opts)
  38. int    argc;
  39. char    **argv, *opts;
  40. {
  41.     static int sp = 1;
  42.     register int c;
  43.     register char *cp;
  44.  
  45.     if(sp == 1)
  46.         if(optind >= argc ||
  47.            argv[optind][0] != '-' || argv[optind][1] == '\0')
  48.             return(EOF);
  49.         else if(strcmp(argv[optind], "--") == NULL) {
  50.             optind++;
  51.             return(EOF);
  52.         }
  53.     optopt = c = argv[optind][sp];
  54.     if(c == ':' || (cp=strchr(opts, c)) == NULL) {
  55.         ERR(": illegal option -- ", c);
  56.         if(argv[optind][++sp] == '\0') {
  57.             optind++;
  58.             sp = 1;
  59.         }
  60.         return('?');
  61.     }
  62.     if(*++cp == ':') {
  63.         if(argv[optind][sp+1] != '\0')
  64.             optarg = &argv[optind++][sp+1];
  65.         else if(++optind >= argc) {
  66.             ERR(": option requires an argument -- ", c);
  67.             sp = 1;
  68.             return('?');
  69.         } else
  70.             optarg = argv[optind++];
  71.         sp = 1;
  72.     } else {
  73.         if(argv[optind][++sp] == '\0') {
  74.             sp = 1;
  75.             optind++;
  76.         }
  77.         optarg = NULL;
  78.     }
  79.     return(c);
  80. }
  81.